home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / archie-1.4.1 / get_vdir.c < prev    next >
C/C++ Source or Header  |  1995-06-18  |  14KB  |  485 lines

  1. /*
  2.  * Copyright (c) 1989, 1990, 1991 by the University of Washington
  3.  *
  4.  * For copying and distribution information, please see the file
  5.  * <copyright.h>.
  6.  */
  7.  
  8. #include <stdio.h>
  9.  
  10. #include <pfs.h>
  11. #include <pprot.h>
  12. #include <perrno.h>
  13. #include <pcompat.h>
  14. #include <pauthent.h>
  15. #include <pmachine.h>
  16.  
  17. #ifdef NEED_STRING_H
  18. # include <string.h>
  19. #else
  20. # include <strings.h>
  21. #endif
  22.  
  23. #ifdef DEBUG
  24. extern int    pfs_debug;
  25. #endif
  26.  
  27. extern int    pwarn;
  28. extern char    p_warn_string[];
  29. extern int    perrno;
  30. extern char    p_err_string[];
  31.  
  32. /*
  33.  * get_vdir - Get contents of a directory given its location
  34.  *
  35.  *          GET_VDIR takes a directory location, a list of desired
  36.  *          components, a pointer to a directory structure to be 
  37.  *          filled in, and flags.  It then queries the appropriate 
  38.  *          directory server and retrieves the desired information.
  39.  *
  40.  *      ARGS:   dhost       - Host on which directory resides
  41.  *              dfile       - Directory on that host
  42.  *              components  - The names from the directory we want
  43.  *        dir        - Structure to be filled in
  44.  *            flags       - Options.  See FLAGS
  45.  *        filters     - filters to be applied to result 
  46.  *              acomp       - Pointer to remaining components
  47.  *
  48.  *     FLAGS:    GVD_UNION   - Do not expand union links
  49.  *        GVD_EXPAND  - Expand union links locally
  50.  *        GVD_REMEXP  - Request remote expansion (& local if refused)
  51.  *        GVD_LREMEXP - Request remote expansion of local union links
  52.  *        GVD_VERIFY  - Only verify that args are for a directory
  53.  *              GVD_ATTRIB  - Request attributes from directory server
  54.  *              GVD_NOSORT  - Do not sort links when adding to directory
  55.  *
  56.  *   RETURNS:   PSUCCESS (0) or error code
  57.  *        On some codes addition information in p_err_string
  58.  *
  59.  *     NOTES:   If acomp is non-null the string it points to might be modified
  60.  *
  61.  *              If the directory passed as an argument already has
  62.  *        links or union links, then those lists will be freed
  63.  *              before the new contents are filled in.
  64.  *
  65.  *              If a filter is passed to the procedure, and application of
  66.  *              the filter results in additional union link, then those links
  67.  *              will (or will not) be expanded as specified in the FLAGS field.
  68.  *
  69.  *              If the list of components in NULL, or the null string, then
  70.  *              get_vdir will return all links in the requested directory.
  71.  *
  72.  *      BUGS:   Doesn't process union links yet
  73.  *              Doesn't process errors returned from server
  74.  *        Doesn't expand union links if requested to
  75.  */
  76. int
  77. get_vdir(dhost,dfile,components,dir,flags,filters,acomp)
  78.     char    *dhost;        /* Host on which directory resides           */
  79.     char    *dfile;        /* Name of file on that host                 */
  80.     char    *components;    /* Component name (wildcards allowed)        */
  81.     PVDIR    dir;        /* Structure to be filled in             */
  82.     long    flags;        /* Flags                         */
  83.     VLINK    filters;    /* Filters to be applied to result           */
  84.     char    *acomp;        /* Components left to be resolved            */
  85.     {
  86.         PTEXT    request;    /* Text of request to dir server             */
  87.     PTEXT    resp;            /* Response from dir server                 */
  88.  
  89.     char    ulcomp[MAX_VPATH];/* Work space for new current component    */
  90.     char    *comp = components;
  91.  
  92.     VLINK    cur_link = NULL;/* Current link being filled in              */
  93.     VLINK     exp = NULL;     /* The current ulink being expanded         */
  94.     VLINK    pul = NULL;     /* Prev union link (insert new one after it) */
  95.     VLINK    l;        /* Temp link pointer                  */
  96.     int    mcomp;        /* Flag - check multiple components          */
  97.     int    unresp;        /* Flag - received unresolved response       */
  98.     int    getattrib = 0;  /* Get attributes from server                */
  99.     int    vl_insert_flag; /* Flags to vl_insert                        */
  100.  
  101.     int    fwdcnt = MAX_FWD_DEPTH;
  102.  
  103.     int    no_links = 0;   /* Count of number of links found         */
  104.  
  105.     char    options[40];    /* LIST option                               */
  106.     char    *opt;           /* After leading +                           */
  107.  
  108.     PAUTH    authinfo;
  109.  
  110.     /* Treat null string like NULL (return entire directory) */
  111.     if(!components || !*components) comp = NULL;
  112.  
  113.     if(acomp && !filters) mcomp = 1;
  114.     else mcomp = 0;
  115.  
  116.     if(flags&GVD_ATTRIB) {
  117.         getattrib++;
  118.         flags &= (~GVD_ATTRIB);
  119.     }
  120.  
  121.     if(flags&GVD_NOSORT) vl_insert_flag = VLI_NOSORT;
  122.     else vl_insert_flag = VLI_ALLOW_CONF;
  123.     flags &= (~GVD_NOSORT);
  124.  
  125.     if(filters) comp = NULL;
  126.  
  127.     perrno = 0;
  128.  
  129.     authinfo = get_pauth(PFSA_UNAUTHENTICATED);
  130.  
  131.     *options = '\0';
  132.  
  133.     if(getattrib) {
  134.         strcat(options,"+ATTRIBUTES");
  135.         flags &= (~GVD_ATTRIB);
  136.     }
  137.  
  138.     if(!filters) { /* Can't do remote expansion if filters to be applied */
  139.         if(flags == GVD_REMEXP) strcat(options,"+EXPAND");
  140.         if(flags == GVD_LREMEXP) strcat(options,"+LEXPAND");
  141.     }
  142.  
  143.     /* If all we are doing is verifying that dfile is a directory */
  144.     /* then we do not want a big response from the directory      */
  145.     /* server.  A NOT-FOUND is sufficient.                  */
  146.     if(flags == GVD_VERIFY)
  147. #ifdef NEWVERIFYOPT
  148.         strcat(options,"+VERIFY");
  149. #else
  150.     comp = "%#$PRobably_nOn_existaNT$#%";
  151. #endif
  152.  
  153.     if(*options) opt = options+1;
  154.     else opt = "''";
  155.  
  156.     startover:
  157.     request = ptalloc();
  158.  
  159.     sprintf(request->start,
  160.         "VERSION %d %s\nAUTHENTICATOR %s %s\nDIRECTORY ASCII %s\nLIST %s COMPONENTS %s%s%s\n",
  161.         VFPROT_VNO, PFS_SW_ID, authinfo->auth_type,
  162.         authinfo->authenticator, dfile, opt,
  163.         (comp ? comp : ""), (mcomp ? "/" : ""),
  164.         (mcomp ? acomp : ""));
  165.  
  166.     request->length = strlen(request->start);
  167.  
  168. #ifdef DEBUG
  169.     if(pfs_debug > 2)
  170.         fprintf(stderr,"Sending message to dirsrv:\n%s",request->start);
  171. #endif
  172.  
  173. #if defined(MSDOS)
  174.     resp = dirsend(request,dhost,0L);
  175. #else
  176.     resp = dirsend(request,dhost,0);
  177. #endif
  178.  
  179. #ifdef DEBUG
  180.     if(pfs_debug && (resp == NULL)) {
  181.         fprintf(stderr,"Dirsend failed: %d\n",perrno);
  182.     }
  183. #endif
  184.  
  185.     /* If we don't get a response, then if the requested       */
  186.     /* directory, return error, if a ulink, mark it unexpanded */
  187.     if(resp == NULL) {
  188.         if(exp) exp->expanded = FAILED;
  189.         else return(perrno);
  190.     }
  191.  
  192.     unresp = 0;
  193.  
  194.     /* Here we must parse reponse and put in directory */
  195.     /* While looking at each packet            */
  196.     while(resp) {
  197.         PTEXT        vtmp;
  198.         char        *line;
  199.  
  200.         vtmp = resp;
  201. #ifdef DEBUG
  202.         if(pfs_debug > 3) fprintf(stderr,"%s\n",resp->start);
  203. #endif
  204.         /* Look at each line in packet */
  205.         for(line = resp->start;line != NULL;line = nxtline(line)) {
  206.         switch (*line) {
  207.             
  208.             /* Temporary variables to hold link info */
  209.             char    l_linktype;
  210.             char     l_name[MAX_DIR_LINESIZE];
  211.             char    l_type[MAX_DIR_LINESIZE];
  212.             char     l_htype[MAX_DIR_LINESIZE];
  213.             char     l_host[MAX_DIR_LINESIZE];
  214.             char     l_ntype[MAX_DIR_LINESIZE];
  215.             char     l_fname[MAX_DIR_LINESIZE];
  216.             int        l_version;
  217.             char     t_unresolved[MAX_DIR_LINESIZE];
  218.             int        l_magic;
  219.             int        tmp;
  220.  
  221.         case 'L': /* LINK or LINK-INFO */
  222.             if(strncmp(line,"LINK-INFO",9) == 0) {
  223.             PATTRIB        at;
  224.             PATTRIB        last_at;
  225.             at = parse_attribute(line);
  226.             if(!at) break;
  227.  
  228.             /* Cant have link info without a link */
  229.             if(!cur_link) {
  230.                 perrno = DIRSRV_BAD_FORMAT;
  231.                 atfree(at);
  232.                 break;
  233.             }
  234.             
  235.             if(cur_link->lattrib) {
  236.                 last_at = cur_link->lattrib;
  237.                 while(last_at->next) last_at = last_at->next;
  238.                 at->previous = last_at;
  239.                 last_at->next = at;
  240.             }
  241.             else {
  242.                 cur_link->lattrib = at;
  243.                 at->previous = NULL;
  244.             }
  245.             break;
  246.             }
  247.  
  248.             /* Not LINK-INFO, must be LINK - if not check for error */
  249.             if(strncmp(line,"LINK",4) != 0) goto scanerr;
  250.  
  251.             /* If only verifying, don't want to change dir */
  252.             if(flags == GVD_VERIFY) {
  253.             break;
  254.             }
  255.             /* If first link and some links in dir, free them */
  256.             if(!no_links++) {
  257.             if(dir->links) vllfree(dir->links); dir->links=NULL;
  258.             if(dir->ulinks) vllfree(dir->ulinks); dir->ulinks=NULL;
  259.             }
  260.             
  261.             cur_link = vlalloc();
  262.  
  263.             /* parse and insert file info */
  264.             tmp = sscanf(line,"LINK %c %s %s %s %s %s %s %d %d", &l_linktype,
  265.                  l_type, l_name, l_htype, l_host, 
  266.                  l_ntype, l_fname, &(cur_link->version),
  267.                  &(cur_link->f_magic_no));
  268.  
  269.             if(tmp != 9) {
  270.             perrno = DIRSRV_BAD_FORMAT;
  271.             vlfree(cur_link);
  272.             break;
  273.             }
  274.  
  275.             cur_link->linktype = l_linktype;
  276.             cur_link->type = stcopyr(l_type,cur_link->type);
  277.             cur_link->name = stcopyr(unquote(l_name),cur_link->name);
  278.             cur_link->hosttype = stcopyr(l_htype,cur_link->hosttype);
  279.             cur_link->host = stcopyr(l_host,cur_link->host);
  280.             cur_link->nametype = stcopyr(l_ntype,cur_link->nametype);
  281.             cur_link->filename = stcopyr(l_fname,cur_link->filename);
  282.  
  283.             /* Double check to make sure we don't get */
  284.             /* back unwanted components              */
  285.             /* OK to keep if special (URP) links      */
  286.             /* or if mcomp specified                  */
  287.             if(!mcomp && (cur_link->linktype == 'L') && 
  288.                (!wcmatch(cur_link->name,comp))) {
  289.             vlfree(cur_link);
  290.             break;
  291.             }
  292.  
  293.             /* If other optional info was sent back, it must */
  294.             /* also be parsed before inserting link     ***  */
  295.             
  296.             
  297.             if(cur_link->linktype == 'L') 
  298.             vl_insert(cur_link,dir,vl_insert_flag);
  299.             else {
  300.             tmp = ul_insert(cur_link,dir,pul);
  301.  
  302.             /* If inserted after pul, next one after cur_link */
  303.             if(pul && (!tmp || (tmp == UL_INSERT_SUPERSEDING)))
  304.                 pul = cur_link;
  305.             }
  306.             
  307.             break;
  308.  
  309.         case 'F': /* FILTER, FAILURE or FORWARDED */
  310.             /* FORWARDED */
  311.             if(strncmp(line,"FORWARDED",9) == 0) {
  312.             if(fwdcnt-- <= 0) {
  313.                 ptlfree(resp);
  314.                 perrno = PFS_MAX_FWD_DEPTH;
  315.                 return(perrno);
  316.             }
  317.             /* parse and start over */
  318.  
  319.             tmp = sscanf(line,"FORWARDED %s %s %s %s %d %d", 
  320.                      l_htype,l_host,l_ntype,l_fname,
  321.                      &l_version, &l_magic);
  322.  
  323.             dhost = stcopy(l_host);
  324.             dfile = stcopy(l_fname);
  325.  
  326.             if(tmp < 4) {
  327.                 perrno = DIRSRV_BAD_FORMAT;
  328.                 break;
  329.             }
  330.  
  331.             ptlfree(resp);
  332.             goto startover;
  333.             }
  334.             if(strncmp(line,"FILTER",6) != 0) goto scanerr;
  335.             break;
  336.  
  337.  
  338.         case 'M': /* MULTI-PACKET (processed by dirsend) */
  339.         case 'P': /* PACKET (processed by dirsend) */
  340.             break;
  341.  
  342.         case 'N': /* NOT-A-DIRECTORY or NONE-FOUND */
  343.             /* NONE-FOUND, we just have no links to insert */
  344.             /* It is not an error, but we must clear any   */
  345.             /* old links in the directory arg              */
  346.             if(strncmp(line,"NONE-FOUND",10) == 0) {
  347.             /* If only verifying, don't want to change dir */
  348.             if(flags == GVD_VERIFY) {
  349.                 break;
  350.             }
  351.  
  352.             /* If first link and some links in dir, free them */
  353.             if(!no_links++) {
  354.                 if(dir->links) vllfree(dir->links);
  355.                 if(dir->ulinks) vllfree(dir->ulinks);
  356.                 dir->links = NULL;
  357.                 dir->ulinks = NULL;
  358.             }
  359.             break;
  360.             }
  361.             /* If NOT-A-DIRECTORY or anything else, scan error */
  362.             goto scanerr;
  363.  
  364.         case 'U': /* UNRESOLVED */
  365.             if(strncmp(line,"UNRESOLVED",10) != 0) {
  366.             goto scanerr;
  367.             }
  368.             tmp = sscanf(line,"UNRESOLVED %s", t_unresolved);
  369.             if(tmp < 1) {
  370.             perrno = DIRSRV_BAD_FORMAT;
  371.             break;
  372.             }
  373.             /* If multiple components were resolved */
  374.             if(strlen(t_unresolved) < strlen(acomp)) {
  375.             strcpy(ulcomp,acomp);
  376.             /* ulcomp is the components that were resolved */
  377.             *(ulcomp+strlen(acomp)-strlen(t_unresolved)-1) = '\0';
  378.             /* Comp gets the last component resolved */
  379.             comp = (char *) rindex(ulcomp,'/');
  380.             if(comp) comp++;
  381.             else comp = ulcomp;
  382.             /* Let rd_vdir know what remains */
  383.             strcpy(acomp,t_unresolved);
  384.             }
  385.             unresp = 1;
  386.             break;
  387.  
  388.         case 'V': /* VERSION-NOT-SUPPORTED */
  389.             if(strncmp(line,"VERSION-NOT-SUPPORTED",21) == 0) {
  390.             perrno = DIRSRV_BAD_VERS;
  391.             return(perrno);
  392.             }
  393.             goto scanerr;
  394.  
  395.         scanerr:
  396.         default:
  397.             if(*line && (tmp = scan_error(line))) {
  398.             ptlfree(resp);
  399.             return(tmp);
  400.             }
  401.             break;
  402.         }
  403.         }
  404.  
  405.         resp = resp->next;
  406.  
  407.         ptfree(vtmp);
  408.     }
  409.  
  410.     /* We sent multiple components and weren't told any */
  411.     /* were unresolved                                  */
  412.     if(mcomp && !unresp) {
  413.         /* ulcomp is the components that were resolved */
  414.         strcpy(ulcomp,acomp);
  415.         /* Comp gets the last component resolved */
  416.         comp = (char *) rindex(ulcomp,'/');
  417.         if(comp) comp++;
  418.         else comp = ulcomp;
  419.         /* If we have union links to resolve, only one component remains */
  420.         mcomp = 0;
  421.         /* Let rd_vdir know what remains */
  422.         *acomp = '\0';
  423.     }
  424.  
  425.     /* If only verifying, we already know it is a directory */
  426.     if(flags == GVD_VERIFY) return(PSUCCESS);
  427.  
  428.     /* Don't return if matching was delayed by the need to filter    */
  429.     /* if FIND specified, and dir->links is non null, then we have   */
  430.     /* found a match, and should return.                             */
  431.     if((flags & GVD_FIND) && dir->links && (!filters))
  432.         return(PSUCCESS);
  433.  
  434.     /* If expand specified, and ulinks must be expanded, making sure */
  435.         /* that the order of the links is maintained properly            */
  436.  
  437. expand_ulinks:
  438.  
  439.     if((flags != GVD_UNION) && (flags != GVD_VERIFY)) {
  440.  
  441.         l = dir->ulinks;
  442.  
  443.         /* Find first unexpanded ulink */
  444.         while(l && l->expanded && (l->linktype == 'U')) l = l->next;
  445.         
  446.         /* Only expand if a FILE or DIRECTORY -  Mark as  */
  447.             /* failed otherwise                               */
  448.         /* We must still add support for symbolic ulinks */
  449.         if(l) {
  450.         if ((strcmp(l->type,"DIRECTORY") == 0) || 
  451.             (strcmp(l->type,"FILE") == 0)) {
  452.             l->expanded = TRUE;
  453.             exp = l;
  454.             pul = l;
  455.             dhost = l->host;
  456.             dfile = l->filename;
  457.             goto startover; /* was get_contents; */
  458.         }
  459.         else l->expanded = FAILED;
  460.         }
  461.     }
  462.  
  463.     /* Double check to make sure we don't get */
  464.     /* back unwanted components          */
  465.     /* OK to keep if special (URP) links      */
  466.     if(components && *components) {
  467.         l = dir->links;
  468.         while(l) {
  469.         VLINK    ol;
  470.         if((l->linktype == 'L') && (!wcmatch(l->name,components))) {
  471.             if(l == dir->links)
  472.             dir->links = l->next;
  473.             else l->previous->next = l->next;
  474.             if(l->next) l->next->previous = l->previous;
  475.             ol = l;
  476.             l = l->next;
  477.             vlfree(ol);
  478.         }
  479.         else l = l->next;
  480.         }
  481.     }
  482.  
  483.     return(PSUCCESS);
  484.     }
  485.